home *** CD-ROM | disk | FTP | other *** search
/ NBC Slam Jams! / NBC Slam Jams!.iso / xtras / media_la / effector.cst / 00021_Script_Line Skip < prev    next >
Text File  |  1997-09-30  |  483b  |  24 lines

  1. -- Line Skip
  2.  
  3.  
  4.  
  5.  
  6. property pSkip,pDraw
  7.  
  8. on getPropertyDescriptionList
  9.    if not alphamaniacCheck(the currentSpriteNum) then exit
  10.   
  11.  set pList=[:]
  12.   addProp pList,#pSkip,[format:#integer,comment:"Skip Lines:", Default:0]
  13.   addProp pList,#pDraw,[format:#integer,comment:"Draw Lines:",Default:1]
  14.   return pList
  15. end
  16.  
  17. on beginSprite me
  18.   set s=the spriteNum of me
  19.   if not alphaManiac(s) then exit
  20.   
  21.   lineSkip(sprite s,[linesToSkip:pSkip,linesToDraw:pDraw])
  22. end
  23.  
  24.